/* ==========================================================
REGISTER PAGE
Matches Landing Page
========================================================== */

.register-page{

    padding:120px 0;

    background:#F8F6F2;

}

/* Card */

.register-card{

    width:min(900px,92%);

    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:70px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

/* ==========================================================
HEADER
========================================================== */

.register-header{

    text-align:center;

    margin-bottom:60px;

}

.register-icon{

    width:95px;

    height:95px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:46px;

    border-radius:50%;

    background:#FCF8F2;

    border:1px solid #EED9AE;

    box-shadow:0 12px 35px rgba(214,162,74,.12);

}

.register-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#FCF4E7;

    color:#9C6B1F;

    font-size:14px;

    font-weight:600;

    letter-spacing:.4px;

    margin-bottom:25px;

}

.register-card h1{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

}

.intro{

    max-width:700px;

    margin:auto;

    text-align:center;

    line-height:1.9;

}

/* ==========================================================
SECTION TITLE
========================================================== */

.section-title{

    text-align:center;

    margin:70px 0 40px;

}

/* ==========================================================
INFO BOX
========================================================== */

.info-box{

    background:#FCF8F2;

    border-left:4px solid #D6A24A;

    padding:30px;

    border-radius:18px;

    margin:35px 0;

}

.info-box h3{

    margin-bottom:15px;

}

.info-box p{

    margin-bottom:15px;

}

.info-box p:last-child{

    margin-bottom:0;

}

.info-box ul{

    margin-top:20px;

    padding-left:20px;

}

.info-box li{

    margin-bottom:14px;

}

/* ==========================================================
JOURNEY
========================================================== */

.journey-steps{

    margin-top:20px;

}

.journey-item{

    display:flex;

    gap:25px;

    padding:24px 0;

    border-bottom:1px solid #ECE7DD;

}

.journey-item:last-child{

    border:none;

}

.journey-number{

    width:46px;

    height:46px;

    min-width:46px;

    border-radius:50%;

    background:#D6A24A;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:600;

    font-size:18px;

}

.journey-item h4{

    margin-bottom:8px;

}

.journey-item p{

    margin:0;

}

/* ==========================================================
DIVIDER
========================================================== */

.register-divider{

    margin:60px 0;

    position:relative;

    text-align:center;

    color:#D6A24A;

    font-size:28px;

}

.register-divider::before,

.register-divider::after{

    content:"";

    position:absolute;

    top:50%;

    width:42%;

    height:1px;

    background:#E8DED0;

}

.register-divider::before{

left:0;

}

.register-divider::after{

right:0;

}

/* ==========================================================
CTA
========================================================== */

.register-cta{

    background:#FCF8F2;

    padding:50px;

    border-radius:22px;

    text-align:center;

    border:1px solid #EEE2CB;

}

.register-cta h2{

    margin-bottom:15px;

}

.register-cta p{

    max-width:550px;

    margin:0 auto 35px;

}

.register-btn{

    display:inline-block;

    padding:18px 42px;

    font-size:17px;

    border-radius:50px;

    margin-top:10px;

}

.register-btn:hover{

    transform:translateY(-3px);

}

/* ==========================================================
PRIVACY
========================================================== */

.privacy-note{

    margin-top:35px;

    text-align:center;

    color:#888;

    font-size:14px;

    line-height:1.8;

}

/* ==========================================================
HOVER
========================================================== */

.info-box,

.register-cta{

    transition:.35s;

}

.info-box:hover,

.register-cta:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media(max-width:992px){

.register-card{

padding:50px;

}

.register-card h1{

font-size:48px;

}

}

@media(max-width:768px){

.register-page{

padding:70px 0;

}

.register-card{

padding:35px 25px;

border-radius:20px;

}

.register-card h1{

font-size:38px;

text-align:center;

}

.register-icon{

width:75px;

height:75px;

font-size:36px;

}

.register-tag{

font-size:13px;

}

.intro{

font-size:16px;

}

.journey-item{

gap:16px;

padding:18px 0;

}

.journey-number{

width:40px;

height:40px;

min-width:40px;

font-size:16px;

}

.register-divider::before,

.register-divider::after{

width:35%;

}

.register-cta{

padding:35px 25px;

}

.register-btn{

width:100%;

text-align:center;

}

}